home *** CD-ROM | disk | FTP | other *** search
-
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': 'Factory default preset for Weave effect',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_Weave():
- return {
- 'FillGaps': 1,
- 'GapColor': (0, 0, 0),
- 'WeaveWidth': 75,
- 'WeaveColor': (0, 0, 0),
- 'GapWidth': 25,
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Opacity': 100
- }
-
- def Do(Environment):
- App.Do( Environment, 'Weave', Preset_Weave())
-